forked from tauri-apps/tauri
-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] dev from tauri-apps:dev #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pull
wants to merge
3,363
commits into
ebfork:dev
Choose a base branch
from
tauri-apps:dev
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* remove y offset * Create change-pr-13401.md
Bumps [ring](https://github.com/briansmith/ring) from 0.17.8 to 0.17.14. - [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md) - [Commits](https://github.com/briansmith/ring/commits) --- updated-dependencies: - dependency-name: ring dependency-version: 0.17.14 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Feature gate html manipulation code * Change file
…in path API docs (#13417)
* fix(cli): slow dev startup * Use `recv_timeout` instead * Update crates/tauri-cli/src/interface/rust.rs Co-authored-by: Fabian-Lars <[email protected]> --------- Co-authored-by: Fabian-Lars <[email protected]>
* fix: main binary name can't contain dots * Revert the change in tauri.conf.json * Change file * Use target platform when matching extension
* fix(macos): run `app.set_theme` on main thread * Change file
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
* refactor: put dynamic acl to a feature * Add change file * Tweak remove_unused_commands's docs * License header * Document the feature * Merge remote-tracking branch 'upstream/dev' into dynamic-acl-feature * Use a inner non generic fn for add_capability * Clippy and macro stability notice * Merge remote-tracking branch 'upstream/dev' into dynamic-acl-feature * Format
…13422) (#13423) Co-authored-by: Tony <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…13476) * fix(core): capability filtering crashing allowed command generation tauri-plugin and tauri build scripts cannot have access to the capabilities file (generated by tauri-build) and can only infer capabilities from the config path * cleanup * unused import * followup * fix reassign * mut * Update crates/tauri-utils/src/acl/build.rs Co-authored-by: Tony <[email protected]> --------- Co-authored-by: Tony <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* feat(cli): detect Android env and install SDK and NDK if needed changes the Android setup to be a bit more automated - looking up ANDROID_HOME and NDK_HOME from common system paths and installing the Android SDK and NDK if needed using the command line tools * fix windows * clippy * lint * add prmopts and ci check * also check ANDROID_SDK_ROOT
* add support for adaptive icons * fix * small cleanup * combine android_bg and android_fg when specified * Update crates/tauri-cli/src/icon.rs Co-authored-by: Fabian-Lars <[email protected]> * add scale option * properly generated rounded icons * covector, clippy --------- Co-authored-by: Lucas Nogueira <[email protected]> Co-authored-by: Fabian-Lars <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* refactor(cli): improve errors * update change files * license * add errorext with fs_context helper * update linux * lint * fmt * windows * revert bundler breaking change * fix ios mod * ref * reduce amount of enum variants * fix macos build * Fix windows build * Clippy * capitalize cargo [skip ci] --------- Co-authored-by: Tony <[email protected]>
…in PluginManager (#14148) * Added selector with completionHandler handling * Added .changes file * fix change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…eploy (#14241) * fix(bundler): set APPIMAGE_EXTRACT_AND_RUN env var as well for linuxdeploy * Aktualisieren von linuxdeploy-extract.md
…14115) currently the `use_network_address_for_dev_url` function already detects Ipv4Addr::UNSPECIFIED to resolve the local IP address for mobile development when the dev URL host is 0.0.0.0, but we only call it when `--host` is provided or running on a physical device. This change detects the unspecified host early and force the resolution to run even for simulator builds
i noticed this when testing #13180 (though the original issue refers to npx, which I could not reproduce yet)
…14132) * fix(api): "command not found" error when running addPluginListener the backend expects the command name to be in snake case we've made this change already for check_permissions and request_permissions, but missed register_listener * fix check instead * update bundle.global.js * code review suggestion * add note * adjust change file * remove unused var * fmt * build
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* feat(core): add support to universal app links on macOS follow-up for tauri-apps/tao#1108 * fix ci * clippy * ignore empty schemes
…or nvm4w Fixes #13892 (#14146) * fix(cli): improve Android BuildTask.kt Windows executable detection - Fix Android build error on Windows when using nvm4w - Add robust fallback logic for Windows executable detection - Prevent 'node.exe.cmd' and 'Cannot find module' errors - Graceful fallback to cargo when Node.js detection fails Fixes #13892 * strip extension from project, try exe/cmd/bat * revert args --------- Co-authored-by: Lucas Nogueira <[email protected]>
* fix: skip empty script tag for CSP hash properly * add change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
* fix(core): SHA256 hash for JS scripts CSP on Windows we hash JS scripts as SHA256 for the Content-Security-Policy (CSP) header. The isolation pattern is broken on Windows due to the hash including carriage return characters, which are not processed when the webview checks the script hash to see if the CSP allows the script. * fmt, clippy
…t detected correctly (#14276)
…lds (#14194) * add new api (auto_increment_version_code) in android configuration * ensure increment is only ran once * skip on dev * update doc * change file --------- Co-authored-by: Lucas Nogueira <[email protected]>
* feat(core): back button event and exit on Android, closes #8142 I've used https://github.com/ionic-team/capacitor-plugins/blob/main/app/android/src/main/java/com/capacitorjs/plugins/app/AppPlugin.java as a reference here, checking if there's a back button event handler with a default of webview's goBack implementation * missing change file * remove exit impl * fmt * update wry * fix default back press * add remove_listener
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )